home *** CD-ROM | disk | FTP | other *** search
/ IRIX Base Documentation 2002 November / SGI IRIX Base Documentation 2002 November.iso / usr / share / catman / p_man / cat3 / SCSL / dpbrfs.z / dpbrfs
Encoding:
Text File  |  2002-10-03  |  6.1 KB  |  199 lines

  1.  
  2.  
  3.  
  4. DDDDPPPPBBBBRRRRFFFFSSSS((((3333SSSS))))                                                          DDDDPPPPBBBBRRRRFFFFSSSS((((3333SSSS))))
  5.  
  6.  
  7.  
  8. NNNNAAAAMMMMEEEE
  9.      DPBRFS - improve the computed solution to a system of linear equations
  10.      when the coefficient matrix is symmetric positive definite and banded,
  11.      and provides error bounds and backward error estimates for the solution
  12.  
  13. SSSSYYYYNNNNOOOOPPPPSSSSIIIISSSS
  14.      SUBROUTINE DPBRFS( UPLO, N, KD, NRHS, AB, LDAB, AFB, LDAFB, B, LDB, X,
  15.                         LDX, FERR, BERR, WORK, IWORK, INFO )
  16.  
  17.          CHARACTER      UPLO
  18.  
  19.          INTEGER        INFO, KD, LDAB, LDAFB, LDB, LDX, N, NRHS
  20.  
  21.          INTEGER        IWORK( * )
  22.  
  23.          DOUBLE         PRECISION AB( LDAB, * ), AFB( LDAFB, * ), B( LDB, * ),
  24.                         BERR( * ), FERR( * ), WORK( * ), X( LDX, * )
  25.  
  26. IIIIMMMMPPPPLLLLEEEEMMMMEEEENNNNTTTTAAAATTTTIIIIOOOONNNN
  27.      These routines are part of the SCSL Scientific Library and can be loaded
  28.      using either the -lscs or the -lscs_mp option.  The -lscs_mp option
  29.      directs the linker to use the multi-processor version of the library.
  30.  
  31.      When linking to SCSL with -lscs or -lscs_mp, the default integer size is
  32.      4 bytes (32 bits). Another version of SCSL is available in which integers
  33.      are 8 bytes (64 bits).  This version allows the user access to larger
  34.      memory sizes and helps when porting legacy Cray codes.  It can be loaded
  35.      by using the -lscs_i8 option or the -lscs_i8_mp option. A program may use
  36.      only one of the two versions; 4-byte integer and 8-byte integer library
  37.      calls cannot be mixed.
  38.  
  39. PPPPUUUURRRRPPPPOOOOSSSSEEEE
  40.      DPBRFS improves the computed solution to a system of linear equations
  41.      when the coefficient matrix is symmetric positive definite and banded,
  42.      and provides error bounds and backward error estimates for the solution.
  43.  
  44. AAAARRRRGGGGUUUUMMMMEEEENNNNTTTTSSSS
  45.      UPLO    (input) CHARACTER*1
  46.              = 'U':  Upper triangle of A is stored;
  47.              = 'L':  Lower triangle of A is stored.
  48.  
  49.      N       (input) INTEGER
  50.              The order of the matrix A.  N >= 0.
  51.  
  52.      KD      (input) INTEGER
  53.              The number of superdiagonals of the matrix A if UPLO = 'U', or
  54.              the number of subdiagonals if UPLO = 'L'.  KD >= 0.
  55.  
  56.      NRHS    (input) INTEGER
  57.              The number of right hand sides, i.e., the number of columns of
  58.              the matrices B and X.  NRHS >= 0.
  59.  
  60.  
  61.  
  62.  
  63.                                                                         PPPPaaaaggggeeee 1111
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70. DDDDPPPPBBBBRRRRFFFFSSSS((((3333SSSS))))                                                          DDDDPPPPBBBBRRRRFFFFSSSS((((3333SSSS))))
  71.  
  72.  
  73.  
  74.      AB      (input) DOUBLE PRECISION array, dimension (LDAB,N)
  75.              The upper or lower triangle of the symmetric band matrix A,
  76.              stored in the first KD+1 rows of the array.  The j-th column of A
  77.              is stored in the j-th column of the array AB as follows:  if UPLO
  78.              = 'U', AB(kd+1+i-j,j) = A(i,j) for max(1,j-kd)<=i<=j; if UPLO =
  79.              'L', AB(1+i-j,j)    = A(i,j) for j<=i<=min(n,j+kd).
  80.  
  81.      LDAB    (input) INTEGER
  82.              The leading dimension of the array AB.  LDAB >= KD+1.
  83.  
  84.      AFB     (input) DOUBLE PRECISION array, dimension (LDAFB,N)
  85.              The triangular factor U or L from the Cholesky factorization A =
  86.              U**T*U or A = L*L**T of the band matrix A as computed by DPBTRF,
  87.              in the same storage format as A (see AB).
  88.  
  89.      LDAFB   (input) INTEGER
  90.              The leading dimension of the array AFB.  LDAFB >= KD+1.
  91.  
  92.      B       (input) DOUBLE PRECISION array, dimension (LDB,NRHS)
  93.              The right hand side matrix B.
  94.  
  95.      LDB     (input) INTEGER
  96.              The leading dimension of the array B.  LDB >= max(1,N).
  97.  
  98.      X       (input/output) DOUBLE PRECISION array, dimension (LDX,NRHS)
  99.              On entry, the solution matrix X, as computed by DPBTRS.  On exit,
  100.              the improved solution matrix X.
  101.  
  102.      LDX     (input) INTEGER
  103.              The leading dimension of the array X.  LDX >= max(1,N).
  104.  
  105.      FERR    (output) DOUBLE PRECISION array, dimension (NRHS)
  106.              The estimated forward error bound for each solution vector X(j)
  107.              (the j-th column of the solution matrix X).  If XTRUE is the true
  108.              solution corresponding to X(j), FERR(j) is an estimated upper
  109.              bound for the magnitude of the largest element in (X(j) - XTRUE)
  110.              divided by the magnitude of the largest element in X(j).  The
  111.              estimate is as reliable as the estimate for RCOND, and is almost
  112.              always a slight overestimate of the true error.
  113.  
  114.      BERR    (output) DOUBLE PRECISION array, dimension (NRHS)
  115.              The componentwise relative backward error of each solution vector
  116.              X(j) (i.e., the smallest relative change in any element of A or B
  117.              that makes X(j) an exact solution).
  118.  
  119.      WORK    (workspace) DOUBLE PRECISION array, dimension (3*N)
  120.  
  121.      IWORK   (workspace) INTEGER array, dimension (N)
  122.  
  123.      INFO    (output) INTEGER
  124.              = 0:  successful exit
  125.              < 0:  if INFO = -i, the i-th argument had an illegal value
  126.  
  127.  
  128.  
  129.                                                                         PPPPaaaaggggeeee 2222
  130.  
  131.  
  132.  
  133.  
  134.  
  135.  
  136. DDDDPPPPBBBBRRRRFFFFSSSS((((3333SSSS))))                                                          DDDDPPPPBBBBRRRRFFFFSSSS((((3333SSSS))))
  137.  
  138.  
  139.  
  140. PPPPAAAARRRRAAAAMMMMEEEETTTTEEEERRRRSSSS
  141.      ITMAX is the maximum number of steps of iterative refinement.
  142.  
  143. SSSSEEEEEEEE AAAALLLLSSSSOOOO
  144.      INTRO_LAPACK(3S), INTRO_SCSL(3S)
  145.  
  146.      This man page is available only online.
  147.  
  148.  
  149.  
  150.  
  151.  
  152.  
  153.  
  154.  
  155.  
  156.  
  157.  
  158.  
  159.  
  160.  
  161.  
  162.  
  163.  
  164.  
  165.  
  166.  
  167.  
  168.  
  169.  
  170.  
  171.  
  172.  
  173.  
  174.  
  175.  
  176.  
  177.  
  178.  
  179.  
  180.  
  181.  
  182.  
  183.  
  184.  
  185.  
  186.  
  187.  
  188.  
  189.  
  190.  
  191.  
  192.  
  193.  
  194.  
  195.                                                                         PPPPaaaaggggeeee 3333
  196.  
  197.  
  198.  
  199.